home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / e_debug.e < prev    next >
Text File  |  2000-03-25  |  4KB  |  153 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class E_DEBUG
  17.    --
  18.    -- The instruction "debug ... end".
  19.    --
  20.  
  21. inherit INSTRUCTION;
  22.  
  23. creation make
  24.  
  25. feature
  26.  
  27.    start_position: POSITION;
  28.  
  29.    list: ARRAY[MANIFEST_STRING];
  30.  
  31.    compound: COMPOUND;
  32.  
  33.    is_pre_computable: BOOLEAN is false;
  34.  
  35.    end_mark_comment: BOOLEAN is true;
  36.  
  37.    to_runnable(ct: TYPE): like Current is
  38.       do
  39.          if current_type = Void then
  40.             current_type := ct;
  41.             if run_control.debug_check then
  42.                if compound /= Void then
  43.                   compound := compound.to_runnable(ct);
  44.                end;
  45.             end;
  46.             Result := Current;
  47.          else
  48.             !!Result.make(start_position,list,compound);
  49.             Result := Result.to_runnable(ct);
  50.          end;
  51.       end;
  52.  
  53.    stupid_switch(r: ARRAY[RUN_CLASS]): BOOLEAN is
  54.       do
  55.          Result := true;
  56.       end;
  57.  
  58.    afd_check is
  59.       do
  60.          if run_control.debug_check then
  61.             if compound /= Void then
  62.                compound.afd_check;
  63.             end;
  64.          end;
  65.       end;
  66.  
  67.    collect_c_tmp is
  68.       do
  69.       end;
  70.  
  71.    compile_to_c is
  72.       do
  73.          if run_control.debug_check then
  74.             if compound /= Void then
  75.                compound.compile_to_c;
  76.             end;
  77.          end;
  78.       end;
  79.  
  80.    compile_to_jvm is
  81.       do
  82.          if run_control.debug_check then
  83.             if compound /= Void then
  84.                compound.compile_to_jvm;
  85.             end;
  86.          end;
  87.       end;
  88.  
  89.    use_current: BOOLEAN is
  90.       do
  91.          if run_control.debug_check then
  92.             if compound /= Void then
  93.                Result := compound.use_current;
  94.             end;
  95.          end;
  96.       end;
  97.  
  98.    pretty_print is
  99.       local
  100.          i: INTEGER;
  101.       do
  102.          fmt.keyword("debug");
  103.          fmt.level_incr;
  104.          if list /= Void then
  105.             fmt.put_character('(');
  106.             from
  107.                i := list.lower;
  108.             until
  109.                i > list.upper
  110.             loop
  111.                list.item(i).pretty_print;
  112.                i := i + 1;
  113.                if i <= list.upper then
  114.                   fmt.put_character(',')
  115.                end;
  116.             end;
  117.             fmt.put_character(')');
  118.          end;
  119.          fmt.level_decr;
  120.          if compound /= Void then
  121.             compound.pretty_print;
  122.          end;
  123.          fmt.indent;
  124.          fmt.keyword("end;");
  125.          if fmt.print_end_debug then
  126.             fmt.put_end("debug");
  127.          end;
  128.       end;
  129.  
  130. feature {NONE}
  131.  
  132.    current_type: TYPE;
  133.  
  134.    make(sp: like start_position; l: like list; c: like compound) is
  135.       require
  136.          not sp.is_unknown
  137.       do
  138.          start_position := sp;
  139.          list := l;
  140.          compound := c;
  141.       ensure
  142.          start_position = sp;
  143.          list = l;
  144.          compound = c;
  145.       end;
  146.  
  147. invariant
  148.  
  149.    not start_position.is_unknown
  150.  
  151. end -- E_DEBUG
  152.  
  153.